home *** CD-ROM | disk | FTP | other *** search
/ System Booster / System Booster.iso / Texteditors / Origami / Sources / src / getopt.h next >
Encoding:
C/C++ Source or Header  |  1996-09-27  |  196 b   |  11 lines

  1. #ifndef _GETOPT_H_
  2.  
  3. #define _GETOPT_H_
  4.  
  5. extern char *optarg;
  6. extern int optind;
  7. extern int opterr;
  8. extern int getopt (int argc, char *const *argv, const char *shortopts);
  9.  
  10. #endif /* _GETOPT_H_ */
  11.